home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 4 / Apprentice-Release4.iso / Demos / AppMaker 2.0b3 / Demo AppMaker 1.5 / Demo AppMaker™ / Demo AppMaker™.rsrc / TmCT_205_ModalDialog.h < prev    next >
Encoding:
C/C++ Source or Header  |  1992-04-08  |  674 b   |  27 lines

  1. /* %filename% -- Modal dialog */
  2. /* Created %date% %time% by AppMaker */
  3.  
  4. #define _H_%DlogName% 
  5.  
  6. #include "z%DlogName%.h"
  7. %for each item gen include.override%
  8.  
  9. %for each item gen auxiliaryClass%
  10. /*----------*/
  11. class C%DlogName% : public Z%DlogName% {
  12. public:
  13.     virtual    void    I%DlogName%    (CDirectorOwner        *aSupervisor);
  14.     void    UpdateMenus        (void);                            // is override
  15.     void     DoCommand        (long            theCommand);    // is override
  16.  
  17. protected:
  18.     void    ProviderChanged    (CCollaborator    *aProvider,
  19.                              long            reason,
  20.                              void*            info);            // is override
  21.     %for each item gen auxiliaryMethod.decl%
  22.  
  23. }; /* C%DlogName% */
  24.  
  25. /*----------*/
  26. void    Do%dlogname%    (CDirectorOwner        *aSupervisor);
  27.